home *** CD-ROM | disk | FTP | other *** search
/ The Uninvited Press Kit / THE UNINVITED.iso / pc / program.dxr / Internal_19_Pic_Save Selector Behavior.ls < prev    next >
Encoding:
Text File  |  2008-12-30  |  310 b   |  24 lines

  1. global gphotolist
  2.  
  3. on dosomething
  4.   frmRef = the frameLabel
  5.   if gphotolist.getPos(frmRef) > 0 then
  6.     gphotolist.deleteOne(frmRef)
  7.   else
  8.     gphotolist.add(frmRef)
  9.   end if
  10. end
  11.  
  12. on mouseUp me
  13.   dosomething()
  14.   sound(3).play(member("Bip"))
  15. end
  16.  
  17. on mouseEnter
  18.   cursor(280)
  19. end
  20.  
  21. on mouseLeave
  22.   cursor(0)
  23. end
  24.